home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gxbcache.c < prev    next >
C/C++ Source or Header  |  1996-06-11  |  4KB  |  143 lines

  1. /* Copyright (C) 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxbcache.c */
  20. /* Bitmap cache implementation */
  21. #include "memory_.h"
  22. #include "gx.h"
  23. #include "gsmdebug.h"
  24. #include "gxbcache.h"
  25.  
  26. /* ------ Entire cache ------ */
  27.  
  28. /* Initialize a cache.  The caller must allocate and initialize */
  29. /* the first chunk. */
  30. void
  31. gx_bits_cache_init(gx_bits_cache *bc, gx_bits_cache_chunk *bck)
  32. {    bck->next = bck;
  33.     bc->chunks = bck;
  34.     bc->cnext = 0;
  35.     bc->bsize = 0;
  36.     bc->csize = 0;
  37. }
  38.  
  39. /* ------ Chunks ------ */
  40.  
  41. /* Initialize a chunk.  The caller must allocate it and its data. */
  42. void
  43. gx_bits_cache_chunk_init(gx_bits_cache_chunk *bck, byte *data, uint size)
  44. {    bck->next = 0;
  45.     bck->data = data;
  46.     bck->size = size;
  47.     bck->allocated = 0;
  48.     if ( data != 0 )
  49.       { gx_cached_bits_head *cbh = (gx_cached_bits_head *)data;
  50.         cbh->size = size;
  51.         cb_head_set_free(cbh);
  52.       }
  53. }
  54.  
  55. /* ------ Individual entries ------ */
  56.  
  57. /* Attempt to allocate an entry.  If successful, set *pcbh and return 0. */
  58. /* If there isn't enough room, set *pcbh to an entry requiring freeing, */
  59. /* or to 0 if we are at the end of the chunk, and return -1. */
  60. int
  61. gx_bits_cache_alloc(gx_bits_cache *bc, ulong lsize, gx_cached_bits_head **pcbh)
  62. {
  63. #define ssize ((uint)lsize)
  64.     ulong lsize1 = lsize + sizeof(gx_cached_bits_head);
  65. #define ssize1 ((uint)lsize1)
  66.     uint cnext = bc->cnext;
  67.     gx_bits_cache_chunk *bck = bc->chunks;
  68.     uint left = bck->size - cnext;
  69.     gx_cached_bits_head *cbh;
  70.     gx_cached_bits_head *cbh_next;
  71.     uint fsize = 0;
  72.  
  73.     if ( lsize1 > bck->size - cnext && lsize != left )
  74.     {    /* Not enough room to allocate in this chunk. */
  75.         *pcbh = 0;
  76.         return -1;
  77.     }
  78.     /* Look for and/or free enough space. */
  79.     cbh = cbh_next = (gx_cached_bits_head *)(bck->data + cnext);
  80.     while ( fsize < ssize1 && fsize != ssize )
  81.     {    if ( !cb_head_is_free(cbh_next) )
  82.           {    /* Ask the caller to free the entry. */
  83.             if ( fsize )
  84.               cbh->size = fsize;
  85.             *pcbh = cbh_next;
  86.             return -1;
  87.           }
  88.         fsize += cbh_next->size;
  89.         if_debug2('K', "[K]merging free bits 0x%lx(%u)\n",
  90.               (ulong)cbh_next, cbh_next->size);
  91.         cbh_next = (gx_cached_bits_head *)((byte *)cbh + fsize);
  92.     }
  93.     if ( fsize > ssize )        /* fsize >= ssize1 */
  94.       { cbh_next = (gx_cached_bits_head *)((byte *)cbh + ssize);
  95.         cbh_next->size = fsize - ssize;
  96.         cb_head_set_free(cbh_next);
  97.         if_debug2('K', "[K]shortening bits 0x%lx by %u (initial)\n",
  98.               (ulong)cbh, fsize - ssize);
  99.       }
  100.     gs_alloc_fill(cbh, gs_alloc_fill_block, ssize);
  101.     cbh->size = ssize;
  102.     bc->bsize += ssize;
  103.     bc->csize++;
  104.     bc->cnext += ssize;
  105.     bck->allocated += ssize;
  106.     *pcbh = cbh;
  107.     return 0;
  108. #undef ssize
  109. #undef ssize1
  110. }
  111.  
  112. /* Shorten an entry by a given amount. */
  113. void
  114. gx_bits_cache_shorten(gx_bits_cache *bc, gx_cached_bits_head *cbh,
  115.   uint diff, gx_bits_cache_chunk *bck)
  116. {    gx_cached_bits_head *next;
  117.  
  118.     if ( (byte *)cbh + cbh->size == bck->data + bc->cnext &&
  119.          bck == bc->chunks
  120.        )
  121.       bc->cnext -= diff;
  122.     bc->bsize -= diff;
  123.     bck->allocated -= diff;
  124.     cbh->size -= diff;
  125.     next = (gx_cached_bits_head *)((byte *)cbh + cbh->size);
  126.     cb_head_set_free(next);
  127.     next->size = diff;
  128. }
  129.  
  130. /* Free an entry.  The caller is responsible for removing the entry */
  131. /* from any other structures (like a hash table). */
  132. void
  133. gx_bits_cache_free(gx_bits_cache *bc, gx_cached_bits_head *cbh,
  134.   gx_bits_cache_chunk *bck)
  135. {    uint size = cbh->size;
  136.     bc->csize--;
  137.     bc->bsize -= size;
  138.     bck->allocated -= size;
  139.     gs_alloc_fill(cbh, gs_alloc_fill_deleted, size);
  140.     cbh->size = size;    /* gs_alloc_fill may have overwritten */
  141.     cb_head_set_free(cbh);
  142. }
  143.